/* --- GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: white; /* Light text */
    background-color: #0a0a0a; /* Dark background */
    overflow-x: hidden;
}

/* Anchor tag styling */
a {
    text-decoration: none;
    color: #00eaff; /* Cyan link color */
    transition: color 0.3s ease;
}
a:hover {
    color: #00c0d9; /* Darker cyan hover effect */
}

/* --- HEADER / NAVIGATION --- */
header {
    width: 100%;
    padding: 20px 80px; 
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    border-bottom: 2px solid #00eaff; /* Cyan border */
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    color: #00eaff; /* Cyan title */
}

nav a {
    margin: 0 15px;
    color: white; /* Light text */
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}
nav a:hover {
    color: #00eaff; /* Cyan hover */
}


/* --- HERO SECTION WITH VIDEO --- */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Adjust for sticky header */
    margin-top: -85px; 
    padding-top: 85px; 
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; 
    opacity: 0.3; 
    filter: none; 
}

/* Background overlay to darken the area */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8); /* Dark overlay */
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.hero-content h2 {
    font-size: 50px;
    margin: 0;
    color: #00eaff; /* Cyan color */
}

.hero-content p {
    font-size: 18px;
    color: #cccccc; /* Muted text */
    margin: 10px 0 20px;
}


/* --- BUTTON STYLE (.btn) --- */
.btn {
    background: #00eaff; /* Cyan background */
    color: #000;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
    display: inline-block;
    cursor: pointer;
    margin-top: 15px;
}

.btn:hover {
    background: #00c0d9; /* Darker cyan hover */
}


/* --- PRODUCT GRID --- */
.products {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 30px;
    flex-wrap: wrap;
    margin: 60px auto;
    padding: 0 20px;
}

/* --- PRODUCT CARD --- */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #00eaff; /* Cyan border */
    border-radius: 10px;
    padding: 30px;
    
    flex-basis: 320px; 
    max-width: 100%; 
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: auto; 
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #00c0d9; /* Darker cyan hover border */
}

/* PRODUCT IMAGES */
.product-card img {
    width: 90%;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}

/* PRODUCT TEXT */
.product-card h3 {
    color: #00eaff; /* Cyan heading */
    margin: 10px 0 15px;
    font-size: 1.3rem;
}

.product-card p {
    color: #cccccc; /* Muted text */
    margin: 10px 0;
    font-size: 1.1rem;
    flex-grow: 1; 
}

.product-card .btn {
    margin-top: 15px;
}


/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 20px;
    color: #cccccc; /* Muted text */
    background: rgba(0, 0, 0, 0.6);
    font-size: 0.9rem;
    border-top: 2px solid #00eaff; /* Cyan border */
}

/* --- MODAL STYLES --- */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); 
}

.modal-content {
    background-color: #111;
    margin: 10% auto;
    padding: 30px;
    border: 2px solid #00eaff; /* Cyan border */
    width: 80%;
    max-width: 500px;
    border-radius: 12px;
    text-align: left;
}

.modal-content h3, .modal-content h4 {
    color: #00eaff; /* Cyan headings */
    text-align: center;
}

.close-btn {
    color: #cccccc; /* Muted text */
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: white; /* Light text */
    text-decoration: none;
    cursor: pointer;
}

#quantity {
    width: 100px;
    padding: 8px;
    margin: 10px 0 20px;
    background: #0b0b0b;
    border: 1px solid #00eaff; /* Cyan border */
    color: white;
    font-size: 1.1rem;
    text-align: center;
}

.payment-options {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.payment-btn {
    padding: 10px 15px;
    margin: 0;
}